home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / callc.c < prev    next >
Encoding:
C/C++ Source or Header  |  2001-02-09  |  98 b   |  10 lines

  1. #include <unistd.h>
  2. #include "callc.h"
  3.  
  4. int foo = 1;
  5.  
  6. void bar (void)
  7. {
  8.   sleep (foo);
  9. }
  10.